home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 428_02 / libsrc / prnputc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-13  |  349 b   |  21 lines

  1. /*
  2. ** prnputc.c
  3. **
  4. ** Pictor, Version 1.51, Copyright (c) 1992-94 SoftCircuits
  5. ** Redistributed by permission.
  6. */
  7.  
  8. #include "pictor.h"
  9.  
  10. /*
  11. ** Writes a character to the standard list device.
  12. ** Returns 0 if successfull or a non-zero value if an error occurred.
  13. */
  14. int prnputc(char c)
  15. {
  16.     return(prnwrite(&c,1));
  17.  
  18. } /* prnputc */
  19.  
  20.  
  21.